FSM function name:
    SubEstado

Parameters:
    

Module header:
    This is a low Level chid-FSM: historic
    Rolf'2002

Global initialization:
    // #include <conio.h>
    // #include <stdio.h>
    
    #if defined(FSM_DEBUG)
     #define Q() printf("Default:(%s), ",FSM_STATE_NAME());
    #else
     #define Q() printf("Default:(%s), ","?");
    #endif

Function header:
    Low level cyclic function

Global actions (before FSM analysis):
    if(Is_Next_State_Illegal()){
     printf("ERROR ******************\n");
     return;
    }

Global actions (after FSM analysis):
    

Global final (out of FSM function):
    

Links: